.banner {
	width: 100%;
	/* height: 8.46rem; */
	height: 10rem;
	background-repeat: no-repeat;
	background-size: cover;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1;
}

#banner {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
	
}

.imgbox {
	width: 100%;
	height: 100%;
	overflow: hidden;
	position: relative; 
	z-index: 1; 
	/* transform-origin: center center; */
	transform: scale(1);
}

.imgbox img {
	width: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}


#banner .swiper-slide-active .imgbox {	
	-webkit-animation: slidescale2 12s ease-out forwards;
	-ms-animation: slidescale2 12s ease-out forwards;
	-moz-animation: slidescale2 12s ease-out forwards;
	animation: slidescale2 12s ease-out forwards;
}

@-webkit-keyframes slidescale2{
	from{ transform: scale(1); }
	to{ transform: scale(1.3); }
}

@-ms-keyframes slidescale2{
	from{ transform: scale(1); }
	to{ transform: scale(1.3); }
}

@-moz-keyframes slidescale2{
	from{ transform: scale(1); }
	to{ transform: scale(1.3); }
}

@keyframes slidescale2{
	from{ transform: scale(1); }
	to{ transform: scale(1.3); }
}




.banner .container { margin-top: 90vh;  /*height: 8.46rem; */position: relative; z-index: 1;}

.search-form {
	width: 4.6rem;
	position: absolute;
	/* bottom: 2.2rem; */
	bottom: .8rem;
	left: 0;
	z-index: 2;
}

.search-form form {
	display: block;
	border-bottom: 1px rgba(255,255,255,.7) solid;
	height: .7rem;
	position: relative;
	z-index: 1;
}

input.btn_inout {
	width: 95%;
	height: .69rem;
	padding: 0 15px 0 0;
	font-size: .16rem;
	line-height: 2.5;
	background-color: transparent;
	outline: none;
	border-style: none;
	color: #fff;
}

button.btn_search {
	display: block;
	width: .49rem;
	height: .69rem;
	background-color: transparent;
	outline: none;
	border-style: none;
	background-image: url(../images/icons/btn_search.png);
	background-repeat: no-repeat;
	background-position: right center;
	background-size: .3rem;
	position: absolute;
	top: 0;
	right: 0;
	z-index: 5;
}

.slogen { position: relative; z-index: 1;margin-top: 7rem;}

.slogen h1 {
	color: #fff;
	padding: .72rem .74rem;
	padding-right: 5%;
	position: relative;
	z-index: 1;
	font-size: .46rem;
	line-height: 1.3;
}

.slogen h1 span { display: block;}

.slogen h1 a {
	width: .75rem;
	height: .7rem;
	background-image: url(../images/icons/btn_linkTonext.png);
	background-repeat: no-repeat;
	background-position: center center;
	position: absolute;
	right: 0;
	z-index: 5;
	top: .75rem;
}


/* main */
.main { background-color: #fff; position: relative; z-index:5; overflow: hidden;}
.gonggao  { position: relative;}
.gonggao::before {
	content: "";
	width: 20%;
	height: 0;
	border-bottom: 1px #e5e5e5 solid;
	position: absolute;
	left: 0;
	bottom: 0;
}

.gonggao .container {	
	padding-top: 1.08rem;
	padding-bottom: 1rem; 
	border-bottom: 1px #e5e5e5 solid;
}

.gonggao_list { width: 100%;}
.gonggao_list ul { list-style: none;}
.gonggao_list ul li {
	width: 24%;
	height: auto;
	float: left;
	margin-right: 1%;
	cursor: pointer;
	transition: all .35s;
}

.gonggao_list ul li:last-child { margin-right: 0;}

.gonggao_list ul li h4 {font-size: .2rem; line-height: 1.5; margin-bottom: .15rem; }

.gonggao_list ul li h4 a { 
	color: #333; text-decoration: none;
	display: -webkit-box;
	height: .6rem;
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;	
}

.gonggao_list ul li span {
	display: block;
	position: relative;
	z-index: 1;
	color: #fff;
	overflow: hidden;
	padding: 0 5px;
	line-height: 1.2;
}

.gonggao_list ul li span::before {
	content: "";
	width: 100%;
	height: 100%;
	background-color: #00b3ee;
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: -1;
	transform: translateX(-110%);
	transition: all .35s;
}

.gonggao_list ul li:hover a { font-weight: bold;}
.gonggao_list ul li:hover span::before {
	content: "";
	transform: translateX(0);
	transition: all .35s;
}

/* news */
.news,.jiaoxuehuodong {	padding: 1rem 0 1.63rem;}
.news_list { width: 100%;}
.news_list ul { list-style: none;}
.news_list ul li {
	width: 32%;
	height: auto;
	float: left;
	margin-right: 2%;
	transition: all .35s;
}

.news_list ul li:last-child,
.news_list ul li:nth-child(3n) { margin-right: 0;}

.img_box {
	width: 100%;
	height: 3rem;
	margin-bottom: .6rem;
}

.img_box a { display: block; width: 100%; height: 100%; overflow: hidden; position: relative;z-index: 1; }
.img_box a img {
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 1;
	transform: translate(-50%,-50%) scale(1);
	transition: all .35s;
}

.news_list ul li h5 { max-height: 1.07rem; font-size: .24rem; overflow: hidden; margin-bottom: .32rem;}
.news_list ul li h5 a {
	color: #474747; text-decoration: none;
	display: -webkit-box;
	line-height: 1.5;
	height: 1.07rem;
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;	
	transition: all .35s;
}

.news_list ul li span {
	display: block;
	color: #333;
	font-size: .18rem;
	line-height: 1;
	padding:  5px;
	font-weight: lighter;
	transition: all .35s;
}

.news_list ul li:hover img {
	transform: translate(-50%,-50%) scale(1.1);
	transition: all .35s;
}

.news_list ul li:hover h5 a { color: #333; font-weight: bold;}
.news_list ul li:hover span { background-color: #00b3ee; color: #fff; transition: all .35s;}

/* 简介 */
.jianjie {min-height: 7rem;}
.beijing {
	width: 16.4rem;
	height: 6.5rem;
	position: absolute;
	top: 0;
	left: 0;
	overflow: hidden;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	z-index: -1;
}

.beijing div {
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	transform:  scale(1);	
}

.imgScale {
	-webkit-animation: slidescale 3s ease-out forwards;
	-ms-animation: slidescale 3s ease-out forwards;
	-moz-animation: slidescale 3s ease-out forwards;
	animation: slidescale 3s ease-out forwards;
}


.beijing img {
	width: 100%;
	position: absolute;
	top: 50%;
	left: 50%;	
	transform: translate(-50%,-50%) scale(1);	
}

@-webkit-keyframes slidescale {
	from{ transform: scale(1); }
	to{ transform: scale(1.2); }
}

@-ms-keyframes slidescale {
	from{ transform: scale(1); }
	to{ transform:scale(1.2); }
}

@-moz-keyframes slidescale {
	from{ transform:scale(1); }
	to{ transform: scale(1.2); }
}

@keyframes slidescale {
	from{ transform: scale(1); }
	to{ transform: scale(1.2); }
}



.jianjie_box {	padding-top: 1.5rem;color: #fff;}

.jianjie_box small {display: block;	font-size: .36rem; line-height: 1; font-weight: lighter;}

.jianjie_box big {	font-size: .72rem;line-height: 1.3; }

.jianjie_box h6 { margin-top: .68rem;  font-size: .3rem; font-weight: bold;line-height: 1.5;}

.jianjie_box h6 span { display: block;}

a.btn_more {
	display: inline-block;
	width: 1.2rem; height: .8rem;
	background-color: #00b3ee;
	background-image: url(../images/icons/btn_linkTonext.png);
	background-repeat: no-repeat;
	background-position: 50% center;
	margin-top: 1.6rem;		
	transition: all .35s;
}

.jianjie_box a.btn_more:hover{ 
	background-color: #3551e1; 
	background-position: 68% center;
	transition: all .35s;
}



/* 教学活动 */
.jiaoxue_list { width: 100%;}
.jiaoxue_list ul { list-style: none;}
.jiaoxue_list ul li {
	width: 48%;
	height: 3.06rem;
	float: left;
	border-top: 4px #c0c0c0 solid;	
	color: #333;
	position: relative;
	z-index: 1;
	transition: all 3s;
}

.jiaoxue_list ul li:last-child { margin-left: 2%;}

.jiaoxue_list ul li h3 {margin-top: .45rem; }
.jiaoxue_list ul li h3 a {
	color: #333; line-height: 1.5;
	font-size: .24rem; text-decoration: none;
}

.jiaoxue_list ul li span { display: block; font-size: .18rem;margin-top: .33rem; font-weight: lighter;}

.jiaoxue_list ul li p {
	width: 45%;
	height: 1.96rem;
	overflow: hidden;
	position: absolute;
	right: 13%;
	margin-top: 1.5rem;
	display: none;
	transition: all .5s;
}

.jiaoxue_list ul li p img {	width: 100%; transform: scale(1); transform-origin: center center;  object-fit: cover; transition: all .5s;}

.jiaoxue_list ul li:hover { border-color: #00a9e1; transition: all .35s;}
.jiaoxue_list ul li:hover h3 a { font-weight: bold; transition: all .35s;}
.jiaoxue_list ul li:hover p { display: block; transition: all 3s;}
.jiaoxue_list ul li p:hover img,
.jiaoxue_list ul li h3:hover p img {transform: scale(1.2);	transition: all .5s;}


ol.links {	border-top: 1px #dcdcdc solid; list-style: none; padding-left:0; }
ol.links li {
	padding: .33rem 0;	
	width: 100%;
	color: #333;
	font-size: .18rem;
	background-color: transparent;
	position: relative;
	z-index: 5;
	transition: all .35s;
	cursor: pointer;
}

ol.links li:last-child {border-bottom: 1px #dcdcdc solid;}
ol.links li:last-child:hover { border-color: transparent;}

ol.links a.btn_more2 {
	display: block;
	width: 60%;
	height: 100%;
	position: absolute;
	top: 0;
	right: 0;
	z-index: 1;
	background-image: url(../images/icons/ban-next-hover.png);
	background-repeat: no-repeat;
	background-position: right center;
}

ol.links li::after {
	content: "";
	width: 120%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	background-color: #00b3ee;
	opacity:0; transition: all .35s;
}

ol.links li big { font-size: .36rem; display: block;}

ol.links li small {	display: block;	font-size: .18rem;}

ol.links li small a { display: inline-block; margin-right: 1.5%; text-decoration: none; color: #333; }
ol.links li small a:last-child { margin-right: 0;}

ol.links li .icons {
	padding-left: 1.2rem;
	background-image: url(../images/icons/icons.png);
	background-repeat: no-repeat;	
	background-size: .7rem;
	transition: all .35s;
}

.rencai {background-position:2% 0.05rem; }
.mooc {background-position:2% -1.88rem; }
.lec {background-position:2% -3.81rem; }
.peixun {background-position:2% -5.75rem;}


/* ol.links li:hover {} */
ol.links li:hover,
ol.links li:hover big,
ol.links li:hover small a {color: #fff; transition: all .35s;}
ol.links li:hover::after  { opacity: 1; transition: all .35s;}

ol.links li:hover .rencai {background-position:2% -.9rem; transition: all .35s;}
ol.links li:hover .mooc {background-position:2% -2.84rem;transition: all .35s; }
ol.links li:hover .lec {background-position:2% -4.76rem; transition: all .35s;}
ol.links li:hover .peixun {background-position:2% -6.7rem;transition: all .35s; }


/* 讲座 */
.innerpading { padding: 1.5rem;}

.lecture {	position: relative; z-index: 1;}
.lecture .btn_more {
	background-position: left center;
	margin-top: .08rem;
}

.slidebox { height: 4.65rem;position: relative; z-index: 1;}
#lec-text,#lec-img  { position: absolute; bottom: 0;}

#lec-text{
	height: 4.65rem;
	background-color: #fff;
	/* padding-top: .7rem; */
	padding-top: .2rem;
	color: #333;
}

#lec-text h3 a {
	font-size: .36rem;
	color: #333;
	text-decoration: none;
	line-height: 1.5;
	font-weight: 500;
}

#lec-text p { margin-top: .5rem; margin-bottom: 1rem;}
#lec-text p span {
	display: block;
	font-size: .24rem;
	line-height: 1.5;
	margin-bottom: .1rem;
}

#lec-text .swiper-slide { display: block; text-align: left;}
#lec-text .swiper-pagination {  text-align: left;}
#lec-text .swiper-pagination-bullet {
    width: 24px;
    height: 3px;
	border-radius: 0;
	outline: none;
	border: none;
}

span.swiper-pagination-bullet.swiper-pagination-bullet-active {
	background-color: #007AFF;
}

.swiper-container-horizontal>.swiper-pagination-bullets, 
.swiper-pagination-custom, 
.swiper-pagination-fraction { bottom: -6px;}

#lec-img {	height: 7.6rem;	right: 0; }

/* 3-28 ds */
#lec-img .swiper-slide {
	background-repeat: no-repeat;
	background-size: auto 100%; 
	background-color: transparent;
	background-position: center center;
}

/* 3-28 ds-end */

.sm_pics {
	display:none;
	height: 347px;
	width: 100%;
	background-repeat: no-repeat;
	background-size: cover;
}

.sm_pics a { display: block; width: 100%; height: 100%;}


/* 出版物 */
.chubanwu { margin-top: 1.17rem; margin-bottom: 1rem;}

#public .swiper-slide {	display: block;	text-align: center; transition: all .35s; }

.mgz-img {	
	height: 4.75rem;
	width: 100%;
	background-repeat: no-repeat;
	background-size: cover ;
	background-position: center center;
	overflow: hidden;
	margin: 0;
	padding: 0;
	margin-bottom: .3rem;
	margin-top: .18rem;
	/* transform-origin: center;
	-webkit-transform: translate(0,0) rotate(0) scale(1);
	-ms-transform: translate(0,0) rotate(0) scale(1);
	-moz-transform: translate(0,0)) rotate(0) scale(1);
	transform: translate(0,0) rotate(0) scale(1); */
	transition: all .35s; 
}

.mgz-img a { display: block; width: 100%; height: 100%;margin: 0;
	padding: 0; overflow: hidden; position: relative; z-index: 1; }

#public {
    width: 104%;
    height: 100%;
    padding: 0 10px 0 30px;
    margin-left:-30px ;
	margin-right: -10px;
}

#public .swiper-slide p a {
	font-size: .24rem;
	color: #333;
	text-decoration: none;
	transition: all .35s; 
}

#public .swiper-slide:hover .mgz-img {
	margin-top: 0;
	box-shadow: 0 8px 35px rgba(0,0,0,.1) ;	
	/* -webkit-transform: translate(0,-.18rem) rotate(0) scale(1);
	-ms-transform:translate(0,-.18rem) rotate(0) scale(1);
	-moz-transform: translate(0,-.18rem) rotate(0) scale(1);
	transform: translate(0,-.18rem) rotate(0) scale(1); */
	transition: all .35s; 
}

#public .swiper-slide:hover p a  { color: #00a9e1;transition: all .35s;}


@media  screen and (min-width:1080px)  and (max-width:1440px)  {
	.menu ul { min-width: 74.5%; }
	.menu ul li { margin-left: 2.98%;}
	.menu ul li a {font-size: .24rem;}
	
	.page_positon { margin-right: -15px;}
	a.icon-home { width: .22rem;  height: .22rem; }
	
	h3.g-title { font-size: .26rem;}
	.gonggao .container { padding-top: 1rem;}	
	.g-desc p { font-size: .18rem;}
	.lects-desc p { height: 1rem;
	    overflow: hidden;
	    font-size: .18rem;
	    line-height: 1.8;
	}
	
	.research-info { font-size: .2rem;}
}


@media  screen and (max-width:768px) {
	.headtop ,#pc { display: none;}	
	.container { width:97%;  margin: auto;}
	.space {height: 65px;}
	.sm_nav,#phone  { display: block;}
	
	/* 公共标题 */
	.co-title,.co-title-bai {  font-size: 26px;  margin-bottom: 25px;	}
	.co-title-bai span, .co-title span { font-size: 16px;}
	
	/* foot */
	.foot {padding-top: 35px;}
	.ft-logo p {  margin-top: 22px;}
	
	.ft-info {margin-top: 33px;}
	.ft-info dl { width: 100% !important; float: none; margin-bottom: 28px;}  
	.ft-info dt {
	    font-weight: bold;
	    line-height: 1;
	    font-size: 20px;
	    min-height: unset;
		/* padding-bottom: 10px; border-bottom: 1px #eee solid; */
	    margin-bottom: 14px;	    
	}
	
	.ft-info dd a {
		display: inline-block;
		font-size: 16px;
		width: 48%;		
	}
	
	.ft-info dd p { font-size: 16px;}
	.ft-wx {  width: 48%;  float: left; font-size: 12px; }
	.ft-wx img { height: auto;  width: 67%;	}	
	.ft-info dl:nth-child(3),.ft-wx { margin: 0;}
	.copyright { padding: 18px 0;  margin-top: 38px; }
	.copyright p {  text-align: center;   font-size: 12px;}
	.copyright p a {  float: none; }
	.backtop { bottom: 86px; right: 12px; width: 35px; height: 35px; }
	
	
	
	.banner,
	.banner .container {height: 378px;position: relative; z-index: 1;}	
	.imgbox img { height: 100%; width: auto;}
	
	.search-form {
		width: 63%;
		position: absolute;
		bottom: 82px;
		left: 5%;
		/* margin: auto; */
		z-index: 2;
	}
	
	input.btn_inout ,.search-form form { height: 30px;font-size: 14px;}
	button.btn_search {width: 30px; height: 30px;background-size: 20px;}
	
	.slogen { margin-top: -46px; margin-bottom: 20px;}	
	.slogen::after { content: ""; background: transparent;}
	.slogen .container { background-color: transparent !important;}	
	.slogen h1 {
	    padding: 25px;
		padding-right: 26%;
	    font-size: 16px;
		background-color: #3551e1;
	}	
	.slogen h1 a {
		width: 49px;
		height: 25px;
		position: absolute;
		right: 14px;
		z-index: 5;
		top: 16px;
		margin-top: 15px;
		background-size: 30px;
	}	
	
	
	/* 公告 */
	.gonggao_list ul li {
	    width: 100%;
	    margin-right: 0;
	    float: none;
	    margin-bottom: 14px;
	    border-bottom: 1px #eee solid;
	    padding-bottom: 10px;
	}	
	.gonggao_list ul li h4 {  font-size: 16px; line-height: 1.5;   margin-bottom: 8px;	}	
	.gonggao_list ul li h4 a { height: 45px;}	
	.gonggao_list ul li span { color: #666; padding: 0 5px; font-size: 14px; line-height: 1.2;	}	
	.gonggao::before ,.gonggao_list ul li span::before { display: none;}
	.gonggao .container { border-color: transparent ;}
	.gonggao_list ul li:hover { border-color: #00b3ee ;}
	
	
	.news_list ul li {
		width: 100%;
		height: auto;
		float: none;
		margin-right: 0;
		margin-bottom: 25px;
		transition: all .35s;
	}
	
	.img_box { width: 100%; height: 200px; margin-bottom: 10px;	}
	.img_box a img {  width: 100%; height: auto;}
	.news_list ul li h5 {
	    max-height: unset;
	    font-size: 18px;
	    overflow: hidden;
	    margin-bottom: 12px;
	}
	
	.news_list ul li h5 a { height: auto; }
	.news_list ul li span { font-size: 14px;}
	.news_list ul li:hover h5 a { color: #00b3ee;}
	.news_list ul li:hover span {
	    background-color: transparent;
	    color: #333;
	    transition: all .35s;
	}
	
	.news, .jiaoxuehuodong {  padding: 35px 0 45px;	}
	
	/* about */
	.jianjie {  min-height: 300px;	}
	.beijing {  
		width: 100%;
		height: 172px; 
		background-image: url(../images/ban-2.jpg);
		background-repeat: no-repeat;
		background-size: cover;
		background-position: center center;
	}
	
	.jianjie_box {  padding-top: 28px; }	
	.beijing img { width: auto; height: 100%; }
	.jianjie_box small {
	    display: block;
	    font-size: 20px;
	    line-height: 1.5;
	    width: 72%;
	    font-weight: normal;
	}
	
	.jianjie_box big {  font-size: 28px;  line-height: 2;	}
	.jianjie_box h6 {
	    margin-top: 48px;
	    font-size: 18px;
	    font-weight: bold;
	    line-height: 1.5;
	    color: #333;
	}
	
	a.btn_more {
	    display: inline-block;
	    width: 60px;
	    height: 30px;
		background-size: 38%;
		margin-top: 18px;
	}
	
	/* 教学活动 */
	.jiaoxue_list ul li {
	    width: 100%;
	    height: auto;
	    float: left;
	    margin-bottom: 25px;
	}
	
	.jiaoxue_list ul li:last-child { margin-left: 0; }
	
	.jiaoxue_list ul li p {
	    width: 45%;
	    height:98px;
	    float: left;
	    margin-right: 3%;
	    overflow: hidden;
	    position: static;
	    right: 13%;
	    margin-top: 1.5rem;
	    display: block;
	    transition: all .5s;
	}
	
	.jiaoxue_list ul li h3 {
	    margin-top: 12px;
	    margin-bottom: 0;
	    width: 50%;
	    float: left;
	}
	
	.jiaoxue_list ul li h3 a {
	    line-height: 1.4;
	    font-size: 18px;
	    display: -webkit-box;
	    height: 77px;
	    overflow: hidden;
	    text-overflow: ellipsis;
	    -webkit-line-clamp: 3;
	    -webkit-box-orient: vertical;
	}
	
	.jiaoxue_list ul li span {  font-size: 14px; margin-top: 9px; }
	
	ol.links li { font-size: 18px;  padding: 10px 0;}
	
	ol.links li .icons { padding-left: 62px;background-size: 46px;}
	ol.links li big { font-size: 22px;}
	ol.links li small { font-size: 13px;}
	ol.links li small a { color: #666;}
	
	.rencai { background-position: 2% 5px; }
	.mooc { background-position: 2% -124px; }
	.lec { background-position: 2% -250px; }
	.peixun { background-position: 2% -376px; }
	
	ol.links li:hover .rencai {background-position: 2% -59px;}
	ol.links li:hover .mooc { background-position: 2% -185px; }
	ol.links li:hover .lec { background-position: 2% -317px; }
	ol.links li:hover .peixun { background-position: 2% -439px; }
	ol.links a.btn_more2 {  width: 15%; background-size: 15px;}
	
	
	.mgz-img {height: 215px; margin: 18px 0;}
	#public .swiper-slide p a { font-size: 18px; }
	
	
	/* lecture */
	.theamColor_blue3 {padding: 0 15px; }	
	.theamColor_blue3::after {  left: -3%; height: 100%}
	.theamColor_blue3::after,
	.lecture .btn_more { display: none;}
	
	.co-title-bai { color: #333; padding-bottom: 12px;}
	.lecture { margin-bottom: 55px;}
    #lec-text, #lec-img { height: auto; position: static;}
	.slidebox,#lec-text { height: auto;}
	.sm_pics {display: block; margin-bottom: 25px;}
	
	#lec-text h3 a { font-size: 22px;}
	#lec-text p { margin-top: 20px; margin-bottom: 35px;}
	#lec-text p span {font-size: 16px; margin-bottom: 10px;}
	
}
